Return to doc.sitecore.com

Release Notes (Sitecore CMS 5.2)

This section contains information about the latest release of the module such as release history, changes made to the current version and the list of known issues.

1.  Release History

November 8, 2007

Mailing List module v5.1.4 is released.

Changes:

January 2, 2007

Mailing List module v5.1.3 is released.

Changes:

December 15, 2006

Mailing List module v5.1.2 is released.

Changes:

July 25, 2006 

Mailing List module  v5.1.1 is released.

Changes:

May 25, 2006 

Mailing List module  v5.1.0 is released.

Changes:

New Features:

March 03, 2006

MailingList v5.0.2.3 for Sitecore 5.2 is released.

Changes:

2.  Known Issues

Workaround:

1)   In Enterprise Manager select database Mailinglist, then section Tables and select table Lists in the table list, Choose Design Table in the context menu. Then select the field Deleted and set its default value to 0. Close Designer window and save changes.

Please notice, that lists that were created after upgrading but before making mentioned above steps will not be visible in Mailing List editor until you set value of the field Deleted to 0 for that lists.

2)  Use altered script, that creates Lists table:

CREATE TABLE [Lists] (
        [ID] [uniqueidentifier] NULL ,
        [Created] [smalldatetime] NULL ,
        [Name] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
        [Description] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
        [Footer] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
        [Disabled] [int] NULL ,
        [Deleted] [int] NULL CONSTRAINT [DF_Lists_Deleted] DEFAULT (0)
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]